@charset "utf-8";

:root {
  /* 色管理用の変数 */
  --black-color: #371e0f;
  --white-color: #fff;
  --brown-color: #623013;
  --brown-color02: #ddc6ab;
  --primary-color: #f2eee2;
  --accent-color: #126a3b;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 760px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
}

/* ---------- base ---------- */
html {
  height: 100%;
  background-color: var(--primary-color);
  font-size: 62.5%;
}

body {
  color: var(--black-color);
  font-size: 1.6rem;
  font-family: "Julius Sans One", sans-serif;
  font-family: "Kaisei Opti", serif;
  font-family: "Kiwi Maru", serif;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Noto Serif JP", serif;
  height: 100%;
  line-height: 1.75;
}

.wrap_original {
  overflow: hidden;
}

/* ---------- utility ---------- */

/* ---------- layout ---------- */

.l_contents {
  margin-bottom: 100px;
}

@media screen and (min-width: 1080px) {
  .l_container-lg {
    width: 100%;
    margin: 0 auto;
  }
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_header {
  height: 80px;
  width: 100%;
  background-color: rgba(242, 238, 226, 0.5);
  padding: 16px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: var(--z-index-menu);
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1080px) {
  .l_header {
    height: 128px;
  }
}

.l_header-nav {
  display: none;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    display: inline-block;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    font-family: Kiwi Maru;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
  }
}

/* .l_header-nav_link {
  writing-mode: vertical-rl;
  line-height: 3;
  font-size: 1.7rem;
} */

.l_header-logo {
  width: 100%;
}

.l_header-logo {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.l_header-logo::before {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.l_header-logo img {
  position: absolute;
  top: 55%;
  left: 25%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

@media screen and (min-width: 1080px) {
  .l_header-logo img {
    left: 50%;
  }
}

.l_main {
  width: 100%;
}

/* ---------- module ---------- */

.hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}

@media screen and (min-width: 1080px) {
  .hamburger-menu {
    display: none;
  }
}

.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #371e0f;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}

.hamburger-menu__bar:first-child {
  top: 16px;
}

.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}

.hamburger-menu__bar:last-child {
  top: 32px;
}

.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}

.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}

@media screen and (max-width: 1080px) {
  .navigation {
    display: none;
    background: #371e0f;
    position: absolute;
    top: 70px;
    right: 0;
    width: 300px;
    z-index: 9999;
  }
  .navigation__list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .navigation__list-item {
    border-bottom: solid 1px #474747;
  }

  .navigation__list-item:first-child {
    border-top: solid 1px #474747;
  }

  .navigation__link {
    color: #fff;
    font-family: Kiwi Maru;
    font-size: 1.7rem;
    text-decoration: none;
    display: block;
    padding: 16px 0;
    transition: 0.5s;
  }
}

@media screen and (min-width: 1080px) {
  .navigation__link {
    writing-mode: vertical-rl;
    margin: 18px;
    font-family: kiwi Maru;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1080px) {
  .navigation {
    display: block;
    background: none;
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 0;
  }
}

@media screen and (min-width: 1080px) {
  .navigation__list {
    display: flex;
  }
}

@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    color: var(--accent-color);
  }
}

/* ---------- .footer ---------- */
/* 半透明の背景要素を追加 */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(244, 236, 218, 0.3);
  z-index: -1;
}

footer {
  font-family: Kiwi Maru;
  color: #000;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 2rem;
  height: 100%;
  background: url(../img/footer-cp.jpg) no-repeat bottom / contain;
  background-size: cover;
  background-position: center, center;
  position: relative; /* 要素の重なりを設定 */
}

footer ul {
  padding: 0;
  list-style: none;
}

footer a {
  color: #060606;
  text-decoration: none;
}

footer a:hover {
  color: #000;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

address {
  font-style: normal;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.footer__navi-heading {
  font-weight: 600;
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer__logo-img-wrapper {
  width: 123px;
}
.footer__logo-img {
  width: 100%;
}

.footer__navi li {
  margin-bottom: 0.75rem;
}

.footer__address {
  margin-bottom: 2rem;
}

.footer__address a {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__address a {
    text-decoration: none;
    pointer-events: none;
  }
}

@media (min-width: 1024px) {
  .lg-flex {
    display: flex;
  }
}

.copyright {
  text-align: center;
}

/* ---------- .decoration ---------- */

.m_kv-box {
  position: relative;
  width: 100%;
  padding: 32px 16px;
}

@media screen and (min-width: 1080px) {
  .m_kv-box {
    padding-top: 88px;
  }
}

.m_kv-box_img-wrapper {
  height: 200px; /* 画像の元の高さ */
  overflow: hidden; /* 余分な部分を隠す */
  /* 以下のプロパティを追加 */
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .m_kv-box_img-wrapper {
    height: 300px;
  }
}

.m_kv-box_img {
  filter: brightness(90%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 5px double #fff4e4;
  outline-offset: -15px;
  /* ここ画像ゆがむ */
}

.m_kv-title {
  position: absolute;
  color: #fff;
  font-family: Julius Sans One;
  font-size: 3.2rem;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.m_kv-title-sub {
  position: absolute;
  color: #fff;
  font-family: Kaisei Opti;
  font-size: 1.8rem;
  top: 70%;
  left: 50%;
  -ms-transform: translate(-50%, -70%);
  -webkit-transform: translate(-50%, -70%);
  transform: translate(-50%, -70%);
  margin: 0;
  padding: 0;
}

.shop_copy {
  color: #371e0f;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 2rem;
  line-height: 36px;
  margin: 64px auto;
}

/* フェードイン用のCSS */
.slide-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.3s 0s ease-out;
}

@media screen and (min-width: 768px) {
  .shop_copy {
    font-size: 2.6rem;
    line-height: 42px;
    letter-spacing: 6.24px;
  }
}

.shop-message {
  margin: 0 16px;
}

@media screen and (min-width: 1080px) {
  .shop-message {
    display: grid;
    width: 90%;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin: 0 auto;
  }
}

.shop-message img {
  flex-shrink: 0;
  height: 397.23px;
  object-fit: cover;
  padding-bottom: 27px;
}

@media screen and (min-width: 1080px) {
  .shop-message img {
    height: 405.99px;
    object-fit: cover;
  }
}

.shop-message_img {
  object-fit: cover;
  object-position: 100% 100%;
}

.shop-message_text {
  color: #371e0f;
  font-family: Kiwi Maru;
  font-size: 1.6rem;
  padding-bottom: 14px;
}

.shop-message_text_name {
  color: #371e0f;
  text-align: right;
  font-family: Kiwi Maru;
  font-size: 1.6rem;
  padding-bottom: 40px;
}

@media screen and (min-width: 1080px) {
  .shop-message_text,
  .shop-message_text_name {
    font-size: 2rem;
  }
}

/* table01 */
#table01 tr {
  border-bottom: 1px solid #371e0f;
}

#table01 th,
#table01 td {
  padding: 20px 0;
  border: none;
  color: #371e0f;
  font-family: Kiwi Maru;
  font-size: 1.4rem;
}

@media screen and (min-width: 1080px) {
  #table01 th,
  #table01 td {
    font-size: 1.8rem;
  }
}

#table01 th {
  width: 30%;
}

/* sp */
@media only screen and (max-width: 480px) {
  #table01 th,
  #table01 td {
    width: 100%;
    display: block;
  }

  #table01 th {
    width: 100%;
  }

  #table01 td {
    padding-top: 0;
  }
}

.about_us {
  margin: 0 18px;
}

@media screen and (min-width: 768px) {
  .about_us {
    margin: 0 10%;
  }
}

.about_us-title {
  color: #371e0f;
  font-family: Kiwi Maru;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 36px; /* 225% */
  border-radius: 0px 81px 0px 0px;
  background: linear-gradient(
    270deg,
    rgba(225, 189, 118, 0.7) 2.74%,
    rgba(253, 213, 134, 0) 101.37%
  );
  height: 42px;
}

.map {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  height: 100vh;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px 16px 40px 16px;
}
